home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / ginf / ld.inf (.txt) < prev    next >
GNU Info File  |  1993-09-30  |  82KB  |  1,672 lines

  1. This is Info file ld.info, produced by Makeinfo-1.52 from the input
  2. file ./ld.texinfo.
  3. START-INFO-DIR-ENTRY
  4. * Ld: (ld).            The GNU linker.
  5. END-INFO-DIR-ENTRY
  6.    This file documents the GNU linker LD.
  7.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.    Permission is granted to copy and distribute modified versions of
  12. this manual under the conditions for verbatim copying, provided also
  13. that the entire resulting derived work is distributed under the terms
  14. of a permission notice identical to this one.
  15.    Permission is granted to copy and distribute translations of this
  16. manual into another language, under the above conditions for modified
  17. versions.
  18. Indirect:
  19. ld.info-1: 839
  20. ld.info-2: 49050
  21. Tag Table:
  22. (Indirect)
  23. Node: Top
  24. Node: Overview
  25. Node: Invocation
  26. Node: Commands
  27. 13937
  28. Node: Scripts
  29. 15055
  30. Node: Expressions
  31. 16153
  32. Node: Integers
  33. 17080
  34. Node: Symbols
  35. 17919
  36. Node: Location Counter
  37. 18479
  38. Node: Operators
  39. 19675
  40. Node: Evaluation
  41. 20585
  42. Node: Assignment
  43. 21280
  44. Node: Built-ins
  45. 24350
  46. Node: MEMORY
  47. 28115
  48. Node: SECTIONS
  49. 30678
  50. Node: Section Definition
  51. 32208
  52. Node: Section Contents
  53. 33635
  54. Node: Section Options
  55. 42088
  56. Node: Entry Point
  57. 44260
  58. Node: Other Commands
  59. 45852
  60. Node: BFD
  61. 49050
  62. Node: BFD outline
  63. 52495
  64. Node: BFD information loss
  65. 53682
  66. Node: Mechanism
  67. 56180
  68. Node: MRI
  69. 60555
  70. Node: Index
  71. 64856
  72. End Tag Table
  73. This is Info file ld.info, produced by Makeinfo-1.52 from the input
  74. file ./ld.texinfo.
  75. START-INFO-DIR-ENTRY
  76. * Ld: (ld).            The GNU linker.
  77. END-INFO-DIR-ENTRY
  78.    This file documents the GNU linker LD.
  79.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  80.    Permission is granted to make and distribute verbatim copies of this
  81. manual provided the copyright notice and this permission notice are
  82. preserved on all copies.
  83.    Permission is granted to copy and distribute modified versions of
  84. this manual under the conditions for verbatim copying, provided also
  85. that the entire resulting derived work is distributed under the terms
  86. of a permission notice identical to this one.
  87.    Permission is granted to copy and distribute translations of this
  88. manual into another language, under the above conditions for modified
  89. versions.
  90. File: ld.info,  Node: Top,  Next: Overview,  Prev: (DIR),  Up: (DIR)
  91. Using ld
  92. ********
  93.    This file documents the GNU linker ld.
  94. * Menu:
  95. * Overview::                    Overview
  96. * Invocation::                  Invocation
  97. * Commands::                    Command Language
  98. * BFD::                         BFD
  99. * MRI::                         MRI Compatible Script Files
  100. * Index::                       Index
  101. File: ld.info,  Node: Overview,  Next: Invocation,  Prev: Top,  Up: Top
  102. Overview
  103. ********
  104.    `ld' combines a number of object and archive files, relocates their
  105. data and ties up symbol references. Usually the last step in compiling
  106. a program is to run `ld'.
  107.    `ld' accepts Linker Command Language files written in a superset of
  108. AT&T's Link Editor Command Language syntax, to provide explicit and
  109. total control over the linking process.
  110.    This version of `ld' uses the general purpose BFD libraries to
  111. operate on object files. This allows `ld' to read, combine, and write
  112. object files in many different formats--for example, COFF or `a.out'.
  113. Different formats may be linked together to produce any available kind
  114. of object file.  *Note BFD:: for a list of formats supported on various
  115. architectures.
  116.    Aside from its flexibility, the GNU linker is more helpful than other
  117. linkers in providing diagnostic information.  Many linkers abandon
  118. execution immediately upon encountering an error; whenever possible,
  119. `ld' continues executing, allowing you to identify other errors (or, in
  120. some cases, to get an output file in spite of the error).
  121. File: ld.info,  Node: Invocation,  Next: Commands,  Prev: Overview,  Up: Top
  122. Invocation
  123. **********
  124.    The GNU linker `ld' is meant to cover a broad range of situations,
  125. and to be as compatible as possible with other linkers.  As a result,
  126. you have many choices to control its behavior.
  127.    Here is a summary of the options you can use on the `ld' command
  128. line:
  129.      ld [-o OUTPUT ] OBJFILE...
  130.        [ -AARCHITECTURE ]  [ -b INPUT-FORMAT ]  [ -Bstatic ]
  131.        [ -c MRI-COMMANDFILE ]  [ -d | -dc | -dp ]
  132.        [ -defsym SYMBOL=EXPRESSION ]
  133.        [ -e ENTRY ]  [ -F ]  [ -F FORMAT ]
  134.        [ -format INPUT-FORMAT ]  [ -g ]  [ -i ]
  135.        [ -lAR ]  [ -LSEARCHDIR ]  [ -M | -m ]
  136.        [ -n | -N ]  [ -noinhibit-exec ]  [ -R FILENAME ]
  137.        [ -relax ]  [ -r | -Ur ]  [ -S ]  [ -s ]  [ -T COMMANDFILE ]
  138.        [ -Ttext TEXTORG ]  [ -Tdata DATAORG ]  [ -Tbss BSSORG ]
  139.        [ -t ]  [ -u SYM]  [-v]  [ -X ]  [ -x ]  [ -ySYMBOL ]
  140.        [ { SCRIPT } ]
  141.    This plethora of command-line options may seem intimidating, but in
  142. actual practice few of them are used in any particular context.  For
  143. instance, a frequent use of `ld' is to link standard Unix object files
  144. on a standard, supported Unix system.  On such a system, to link a file
  145. `hello.o':
  146.      ld -o OUTPUT /lib/crt0.o hello.o -lc
  147.    This tells `ld' to produce a file called OUTPUT as the result of
  148. linking the file `/lib/crt0.o' with `hello.o' and the library `libc.a',
  149. which will come from the standard search directories.  (See the
  150. discussion of the `-l' option below.)
  151.    The command-line options to `ld' may be specified in any order, and
  152. may be repeated at will.  Repeating most options with a different
  153. argument will either have no further effect, or override prior
  154. occurrences (those further to the left on the command line) of that
  155. option.
  156.    The exceptions--which may meaningfully be used more than once--are
  157. `-A', `-b' (or its synonym `-format'), `-defsym', `-L', `-l', `-R', and
  158. `-u'.
  159.    The list of object files to be linked together, shown as OBJFILE...,
  160. may follow, precede, or be mixed in with command-line options, except
  161. that an OBJFILE argument may not be placed between an option and its
  162. argument.
  163.    Usually the linker is invoked with at least one object file, but
  164. other forms of binary input files can also be specified with `-l',
  165. `-R', and the script command language.  If *no* binary input files at
  166. all are specified, the linker does not produce any output, and issues
  167. the message `No input files'.
  168.    Option arguments must either follow the option letter without
  169. intervening whitespace, or be given as separate arguments immediately
  170. following the option that requires them.
  171. `OBJFILE...'
  172.      The object files to be linked.
  173. `-b INPUT-FORMAT'
  174.      Specify the binary format for input object files that follow this
  175.      option on the command line.  You don't usually need to specify
  176.      this, as `ld' is configured to expect as a default input format
  177.      the most usual format on each machine.  INPUT-FORMAT is a text
  178.      string, the name of a particular format supported by the BFD
  179.      libraries.  `-format INPUT-FORMAT' has the same effect.  *Note
  180.      BFD::.
  181.      You may want to use this option if you are linking files with an
  182.      unusual binary format.  You can also use `-b' to switch formats
  183.      explicitly (when linking object files of different formats), by
  184.      including `-b INPUT-FORMAT' before each group of object files in a
  185.      particular format.
  186.      The default format is taken from the environment variable
  187.      `GNUTARGET'.  You can also define the input format from a script,
  188.      using the command `TARGET'; see *Note Other Commands::.
  189. `-Bstatic'
  190.      Ignored.  This option is accepted for command-line compatibility
  191.      with the SunOS linker.
  192. `-c MRI-COMMANDFILE'
  193.      For compatibility with linkers produced by MRI, `ld' accepts script
  194.      files written in an alternate, restricted command language,
  195.      described in *Note MRI Compatible Script Files: MRI.  Introduce
  196.      MRI script files with the option `-c'; use the `-T' option to run
  197.      linker scripts written in the general-purpose `ld' scripting
  198.      language.
  199. `-dc'
  200. `-dp'
  201.      These three options are equivalent; multiple forms are supported
  202.      for compatibility with other linkers.  They assign space to common
  203.      symbols even if a relocatable output file is specified (with
  204.      `-r').  The script command `FORCE_COMMON_ALLOCATION' has the same
  205.      effect.  *Note Other Commands::.
  206. `-defsym SYMBOL=EXPRESSION'
  207.      Create a global symbol in the output file, containing the absolute
  208.      address given by EXPRESSION.  You may use this option as many
  209.      times as necessary to define multiple symbols in the command line.
  210.      A limited form of arithmetic is supported for the EXPRESSION in
  211.      this context: you may give a hexadecimal constant or the name of
  212.      an existing symbol, or use `+' and `-' to add or subtract
  213.      hexadecimal constants or symbols.  If you need more elaborate
  214.      expressions, consider using the linker command language from a
  215.      script (*note Assignment: Symbol Definitions: Assignment.).
  216.      *Note:*  there should be no white space between SYMBOL, the equals
  217.      sign ("="), and EXPRESSION.
  218. `-e ENTRY'
  219.      Use ENTRY as the explicit symbol for beginning execution of your
  220.      program, rather than the default entry point. *Note Entry Point::,
  221.      for a discussion of defaults and other ways of specifying the
  222.      entry point.
  223. `-FFORMAT'
  224.      Ignored.  Some older linkers used this option throughout a
  225.      compilation toolchain for specifying object-file format for both
  226.      input and output object files.  The mechanisms `ld' uses for this
  227.      purpose (the `-b' or `-format' options for input files, the
  228.      `TARGET' command in linker scripts for output files, the
  229.      `GNUTARGET' environment variable) are more flexible, but `ld'
  230.      accepts the `-F' option for compatibility with scripts written to
  231.      call the old linker.
  232. `-format INPUT-FORMAT'
  233.      Synonym for `-b INPUT-FORMAT'.
  234.      Ignored.  Provided for compatibility with other tools.
  235.      Perform an incremental link (same as option `-r').
  236. `-lAR'
  237.      Add archive file AR to the list of files to link.  This option may
  238.      be used any number of times.  `ld' will search its path-list for
  239.      occurrences of `libAR.a' for every AR specified.
  240. `-LSEARCHDIR'
  241.      Add path SEARCHDIR to the list of paths that `ld' will search for
  242.      archive libraries.  You may use this option any number of times.
  243.      The paths can also be specified in a link script with the
  244.      `SEARCH_DIR' command.
  245.      Print (to the standard output) a link map--diagnostic information
  246.      about where symbols are mapped by `ld', and information on global
  247.      common storage allocation.
  248.      Set the text and data sections to be readable and writable.  Also,
  249.      do not page-align the data segment.  If the output format supports
  250.      Unix style magic numbers, mark the output as `OMAGIC'.
  251.      Set the text segment to be read only, and mark the output as
  252.      `NMAGIC' if possible.
  253. `-noinhibit-exec'
  254.      Retain the executable output file whenever it is still usable.
  255.      Normally, the linker will not produce an output file if it
  256.      encounters errors during the link process; it exits without
  257.      writing an output file when it issues any error whatsoever.
  258. `-o OUTPUT'
  259.      Use OUTPUT as the name for the program produced by `ld'; if this
  260.      option is not specified, the name `a.out' is used by default.  The
  261.      script command `OUTPUT' can also specify the output file name.
  262. `-R FILENAME'
  263.      On some platforms, this option performs global optimizations that
  264.      become possible when the linker resolves addressing in the
  265.      program, such as relaxing address modes and synthesizing new
  266.      instructions in the output object file.
  267. `-relax'
  268.      An option with machine dependent effects.  Currently this option
  269.      is only supported on the H8/300.
  270.      On some platforms, use option performs global optimizations that
  271.      become possible when the linker resolves addressing in the
  272.      program, such as relaxing address modes and synthesizing new
  273.      instructions in the output object file.
  274.      On platforms where this is not supported, `-relax' is accepted, but
  275.      ignored.
  276.      Generate relocatable output--i.e., generate an output file that
  277.      can in turn serve as input to `ld'.  This is often called "partial
  278.      linking".  As a side effect, in environments that support standard
  279.      Unix magic numbers, this option also sets the output file's magic
  280.      number to `OMAGIC'.  If this option is not specified, an absolute
  281.      file is produced.  When linking C++ programs, this option *will
  282.      not* resolve references to constructors; to do that, use `-Ur'.
  283.      This option does the same as `-i'.
  284.      Omit debugger symbol information (but not all symbols) from the
  285.      output file.
  286.      Omit all symbol information from the output file.
  287. `{ SCRIPT }'
  288.      You can, if you wish, include a script of linker commands directly
  289.      in the command line instead of referring to it via an input file.
  290.      When the character `{' occurs on the command line, the linker
  291.      switches to interpreting the command language until the end of the
  292.      list of commands is reached; the end is indicated with a closing
  293.      brace `}'.  `ld' does not recognize other command-line options
  294.      while parsing the script.  *Note Commands::, for a description of
  295.      the command language.
  296. `-Tbss BSSORG'
  297. `-Tdata DATAORG'
  298. `-Ttext TEXTORG'
  299.      Use ORG as the starting address for--respectively--the `bss',
  300.      `data', or the `text' segment of the output file.  ORG must be a
  301.      single hexadecimal integer; for compatibility with other linkers,
  302.      you may omit the leading `0x' usually associated with hexadecimal
  303.      values.
  304. `-T COMMANDFILE'
  305. `-TCOMMANDFILE'
  306.      Read link commands from the file COMMANDFILE.  These commands
  307.      completely override `ld''s default link format (rather than adding
  308.      to it); COMMANDFILE must specify everything necessary to describe
  309.      the target format.  *Note Commands::.
  310.      You may also include a script of link commands directly in the
  311.      command line by bracketing it between `{' and `}'.
  312.      Print the names of the input files as `ld' processes them.
  313. `-u SYM'
  314.      Force SYM to be entered in the output file as an undefined symbol.
  315.      Doing this may, for example, trigger linking of additional modules
  316.      from standard libraries.  `-u' may be repeated with different
  317.      option arguments to enter additional undefined symbols.
  318. `-Ur'
  319.      For anything other than C++ programs, this option is equivalent to
  320.      `-r': it generates relocatable output--i.e., an output file that
  321.      can in turn serve as input to `ld'.  When linking C++ programs,
  322.      `-Ur' *will* resolve references to constructors, unlike `-r'.
  323.      Display the version number for `ld'.
  324.      If `-s' or `-S' is also specified, delete only local symbols
  325.      beginning with `L'.
  326.      If `-s' or `-S' is also specified, delete all local symbols, not
  327.      just those beginning with `L'.
  328. `-ySYMBOL'
  329.      Print the name of each linked file in which SYMBOL appears.  This
  330.      option may be given any number of times.  On many systems it is
  331.      necessary to prepend an underscore.
  332.      This option is useful when you have an undefined symbol in your
  333.      link but don't know where the reference is coming from.
  334. File: ld.info,  Node: Commands,  Next: BFD,  Prev: Invocation,  Up: Top
  335. Command Language
  336. ****************
  337.    The command language provides explicit control over the link process,
  338. allowing complete specification of the mapping between the linker's
  339. input files and its output.  It controls:
  340.    * input files
  341.    * file formats
  342.    * output file format
  343.    * addresses of sections
  344.    * placement of common blocks
  345.    You may supply a command file (also known as a link script) to the
  346. linker either explicitly through the `-T' option, or implicitly as an
  347. ordinary file. If the linker opens a file which it cannot recognize as
  348. a supported object or archive format, it tries to interpret the file as
  349. a command file.
  350.    You can also include a script directly on the `ld' command line,
  351. delimited by the characters `{' and `}'.
  352. * Menu:
  353. * Scripts::                     Linker Scripts
  354. * Expressions::                 Expressions
  355. * MEMORY::                      MEMORY Command
  356. * SECTIONS::                    SECTIONS Command
  357. * Entry Point::                 The Entry Point
  358. * Other Commands::              Other Commands
  359. File: ld.info,  Node: Scripts,  Next: Expressions,  Up: Commands
  360. Linker Scripts
  361. ==============
  362.    The `ld' command language is a collection of statements; some are
  363. simple keywords setting a particular option, some are used to select and
  364. group input files or name output files; and two statement types have a
  365. fundamental and pervasive impact on the linking process.
  366.    The most fundamental command of the `ld' command language is the
  367. `SECTIONS' command (*note SECTIONS::.).  Every meaningful command
  368. script must have a `SECTIONS' command: it specifies a "picture" of the
  369. output file's layout, in varying degrees of detail.  No other command
  370. is required in all cases.
  371.    The `MEMORY' command complements `SECTIONS' by describing the
  372. available memory in the target architecture.  This command is optional;
  373. if you don't use a `MEMORY' command, `ld' assumes sufficient memory is
  374. available in a contiguous block for all output.  *Note MEMORY::.
  375.    You may include comments in linker scripts just as in C: delimited
  376. by `/*' and `*/'.  As in C, comments are syntactically equivalent to
  377. whitespace.
  378. File: ld.info,  Node: Expressions,  Next: MEMORY,  Prev: Scripts,  Up: Commands
  379. Expressions
  380. ===========
  381.    Many useful commands involve arithmetic expressions.  The syntax for
  382. expressions in the command language is identical to that of C
  383. expressions, with the following features:
  384.    * All expressions evaluated as integers and are of "long" or
  385.      "unsigned long" type.
  386.    * All constants are integers.
  387.    * All of the C arithmetic operators are provided.
  388.    * You may reference, define, and create global variables.
  389.    * You may call special purpose built-in functions.
  390. * Menu:
  391. * Integers::                    Integers
  392. * Symbols::                     Symbol Names
  393. * Location Counter::            The Location Counter
  394. * Operators::                   Operators
  395. * Evaluation::                  Evaluation
  396. * Assignment::                  Assignment: Defining Symbols
  397. * Built-ins::                   Built-In Functions
  398. File: ld.info,  Node: Integers,  Next: Symbols,  Up: Expressions
  399. Integers
  400. --------
  401.    An octal integer is `0' followed by zero or more of the octal digits
  402. (`01234567').
  403.      _as_octal = 0157255;
  404.    A decimal integer starts with a non-zero digit followed by zero or
  405. more digits (`0123456789').
  406.      _as_decimal = 57005;
  407.    A hexadecimal integer is `0x' or `0X' followed by one or more
  408. hexadecimal digits chosen from `0123456789abcdefABCDEF'.
  409.      _as_hex = 0xdead;
  410.    To write a negative integer, use the prefix operator `-'; *note
  411. Operators::..
  412.      _as_neg = -57005;
  413.    Additionally the suffixes `K' and `M' may be used to scale a
  414. constant by `1024' or `1024*1024' respectively. For example, the
  415. following all refer to the same quantity:
  416.              _fourk_1 = 4K;
  417.              _fourk_2 = 4096;
  418.              _fourk_3 = 0x1000;
  419. File: ld.info,  Node: Symbols,  Next: Location Counter,  Prev: Integers,  Up: Expressions
  420. Symbol Names
  421. ------------
  422.    Unless quoted, symbol names start with a letter, underscore, point or
  423. hyphen and may include any letters, underscores, digits, points, and
  424. minus signs.  Unquoted symbol names must not conflict with any
  425. keywords.  You can specify a symbol which contains odd characters or has
  426. the same name as a keyword, by surrounding the symbol name in double
  427. quotes:
  428.              "SECTION" = 9;
  429.              "with a space" = "also with a space" + 10;
  430. File: ld.info,  Node: Location Counter,  Next: Operators,  Prev: Symbols,  Up: Expressions
  431. The Location Counter
  432. --------------------
  433.    The special linker variable "dot" `.' always contains the current
  434. output location counter. Since the `.' always refers to a location in
  435. an output section, it must always appear in an expression within a
  436. `SECTIONS' command. The `.' symbol may appear anywhere that an ordinary
  437. symbol is allowed in an expression, but its assignments have a side
  438. effect. Assigning a value to the `.' symbol will cause the location
  439. counter to be moved.  This may be used to create holes in the output
  440. section.  The location counter may never be moved backwards.
  441.      SECTIONS
  442.      {
  443.              output :
  444.              {
  445.              file1(.text)
  446.              . = . + 1000;
  447.              file2(.text)
  448.              . += 1000;
  449.              file3(.text)
  450.              } = 0x1234;
  451.      }
  452. In the previous example, `file1' is located at the beginning of the
  453. output section, then there is a 1000 byte gap.  Then `file2' appears,
  454. also with a 1000 byte gap following before `file3' is loaded.  The
  455. notation `= 0x1234' specifies what data to write in the gaps (*note
  456. Section Options::.).
  457. File: ld.info,  Node: Operators,  Next: Evaluation,  Prev: Location Counter,  Up: Expressions
  458. Operators
  459. ---------
  460.    The linker recognizes  the standard C set of arithmetic operators,
  461. with the standard bindings and precedence levels:
  462.      precedence      associativity   Operators                Notes
  463.      (highest)
  464.      1               left            !  -  ~                  (1)
  465.      2               left            *  /  %
  466.      3               left            +  -
  467.      4               left            >>  <<
  468.      5               left            ==  !=  >  <  <=  >=
  469.      6               left            &
  470.      7               left            |
  471.      8               left            &&
  472.      9               left            ||
  473.      10              right           ? :
  474.      11              right           &=  +=  -=  *=  /=       (2)
  475.      (lowest)
  476.    Notes: (1) Prefix operators (2) *Note Assignment::
  477. File: ld.info,  Node: Evaluation,  Next: Assignment,  Prev: Operators,  Up: Expressions
  478. Evaluation
  479. ----------
  480.    The linker uses "lazy evaluation" for expressions; it only calculates
  481. an expression when absolutely necessary.  The linker needs the value of
  482. the start address, and the lengths of memory regions, in order to do any
  483. linking at all; these values are computed as soon as possible when the
  484. linker reads in the command file.  However, other values (such as symbol
  485. values) are not known or needed until after storage allocation.  Such
  486. values are evaluated later, when other information (such as the sizes of
  487. output sections) is available for use in the symbol assignment
  488. expression.
  489. File: ld.info,  Node: Assignment,  Next: Built-ins,  Prev: Evaluation,  Up: Expressions
  490. Assignment: Defining Symbols
  491. ----------------------------
  492.    You may create global symbols, and assign values (addresses) to
  493. global symbols, using any of the C assignment operators:
  494. `SYMBOL  = EXPRESSION ;'
  495. `SYMBOL &= EXPRESSION ;'
  496. `SYMBOL += EXPRESSION ;'
  497. `SYMBOL -= EXPRESSION ;'
  498. `SYMBOL *= EXPRESSION ;'
  499. `SYMBOL /= EXPRESSION ;'
  500.    Two things distinguish assignment from other operators in `ld'
  501. expressions.
  502.    * Assignment may only be used at the root of an expression; `a=b+3;'
  503.      is allowed, but `a+b=3;' is an error.
  504.    * You must place a trailing semicolon (";") at the end of an
  505.      assignment statement.
  506.    Assignment statements may appear:
  507.    * as commands in their own right in an `ld' script; or
  508.    * as independent statements within a `SECTIONS' command; or
  509.    * as part of the contents of a section definition in a `SECTIONS'
  510.      command.
  511.    The first two cases are equivalent in effect--both define a symbol
  512. with an absolute address.  The last case defines a symbol whose address
  513. is relative to a particular section (*note SECTIONS::.).
  514.    When a linker expression is evaluated and assigned to a variable, it
  515. is given either an absolute or a relocatable type. An absolute
  516. expression type is one in which the symbol contains the value that it
  517. will have in the output file, a relocatable expression type is one in
  518. which the value is expressed as a fixed offset from the base of a
  519. section.
  520.    The type of the expression is controlled by its position in the
  521. script file.  A symbol assigned within a section definition is created
  522. relative to the base of the section; a symbol assigned in any other
  523. place is created as an absolute symbol. Since a symbol created within a
  524. section definition is relative to the base of the section, it will
  525. remain relocatable if relocatable output is requested.  A symbol may be
  526. created with an absolute value even when assigned to within a section
  527. definition by using the absolute assignment function `ABSOLUTE'.  For
  528. example, to create an absolute symbol whose address is the last byte of
  529. an output section named `.data':
  530.      SECTIONS{ ...
  531.      .data :
  532.              {
  533.                      *(.data)
  534.                      _edata = ABSOLUTE(.) ;
  535.              }
  536.      ... }
  537.    The linker tries to put off the evaluation of an assignment until all
  538. the terms in the source expression are known (*note Evaluation::.).  For
  539. instance, the sizes of sections cannot be known until after allocation,
  540. so assignments dependent upon these are not performed until after
  541. allocation. Some expressions, such as those depending upon the location
  542. counter "dot", `.' must be evaluated during allocation. If the result
  543. of an expression is required, but the value is not available, then an
  544. error results.  For example, a script like the following
  545.      SECTIONS { ...
  546.            text 9+this_isnt_constant :
  547.                      { ...
  548.                      }
  549.      ... }
  550. will cause the error message "`Non constant expression for initial
  551. address'".
  552. File: ld.info,  Node: Built-ins,  Prev: Assignment,  Up: Expressions
  553. Built-In Functions
  554. ------------------
  555.    The command language includes a number of built-in functions for use
  556. in link script expressions.
  557. `ABSOLUTE(EXP)'
  558.      Return the absolute (non-relocatable, as opposed to non-negative)
  559.      value of the expression EXP.  Primarily useful to assign an
  560.      absolute value to a symbol within a section definition, where
  561.      symbol values are normally section-relative.
  562. `ADDR(SECTION)'
  563.      Return the absolute address of the named SECTION.  Your script must
  564.      previously have defined the location of that section. In the
  565.      following example, `symbol_1' and `symbol_2' are assigned identical
  566.      values:
  567.           SECTIONS{ ...
  568.                   .output1 :
  569.                           {
  570.                           start_of_output_1 = ABSOLUTE(.);
  571.                           ...
  572.                           }
  573.                   .output :
  574.                           {
  575.                           symbol_1 = ADDR(.output1);
  576.                           symbol_2 = start_of_output_1;
  577.                           }
  578.           ... }
  579. `ALIGN(EXP)'
  580.      Return the result of the current location counter (`.') aligned to
  581.      the next EXP boundary.  EXP must be an expression whose value is a
  582.      power of two.  This is equivalent to
  583.           (. + EXP - 1) & ~(EXP - 1)
  584.      `ALIGN' doesn't change the value of the location counter--it just
  585.      does arithmetic on it.  As an example, to align the output `.data'
  586.      section to the next `0x2000' byte boundary after the preceding
  587.      section and to set a variable within the section to the next
  588.      `0x8000' boundary after the input sections:
  589.           SECTIONS{ ...
  590.                   .data ALIGN(0x2000): {
  591.                           *(.data)
  592.                           variable = ALIGN(0x8000);
  593.                   }
  594.           ... }
  595.      The first use of `ALIGN' in this example specifies the location of
  596.      a section because it is used as the optional START attribute of a
  597.      section definition (*note Section Options::.).  The second use
  598.      simply defines the value of a variable.
  599.      The built-in `NEXT' is closely related to `ALIGN'.
  600. `DEFINED(SYMBOL)'
  601.      Return 1 if SYMBOL is in the linker global symbol table and is
  602.      defined, otherwise return 0.  You can use this function to provide
  603.      default values for symbols.  For example, the following
  604.      command-file fragment shows how to set a global symbol `begin' to
  605.      the first location in the `.text' section--but if a symbol called
  606.      `begin' already existed, its value is preserved:
  607.           SECTIONS{ ...
  608.                   .text : {
  609.                           begin = DEFINED(begin) ? begin : . ;
  610.                           ...
  611.                   }
  612.           ... }
  613. `NEXT(EXP)'
  614.      Return the next unallocated address that is a multiple of EXP.
  615.      This function is closely related to `ALIGN(EXP)'; unless you use
  616.      the `MEMORY' command to define discontinuous memory for the output
  617.      file, the two functions are equivalent.
  618. `SIZEOF(SECTION)'
  619.      Return the size in bytes of the named SECTION, if that section has
  620.      been allocated.  In the following example, `symbol_1' and
  621.      `symbol_2' are assigned identical values:
  622.           SECTIONS{ ...
  623.                   .output {
  624.                           .start = . ;
  625.                           ...
  626.                           .end = . ;
  627.                           }
  628.                   symbol_1 = .end - .start ;
  629.                   symbol_2 = SIZEOF(.output);
  630.           ... }
  631. `SIZEOF_HEADERS'
  632. `sizeof_headers'
  633.      Return the size in bytes of the output file's headers.  You can
  634.      use this number as the start address of the first section, if you
  635.      choose, to facilitate paging.
  636. File: ld.info,  Node: MEMORY,  Next: SECTIONS,  Prev: Expressions,  Up: Commands
  637. MEMORY Command
  638. ==============
  639.    The linker's default configuration permits allocation of all
  640. available memory.  You can override this configuration by using the
  641. `MEMORY' command.  The `MEMORY' command describes the location and size
  642. of blocks of memory in the target.  By using it carefully, you can
  643. describe which memory regions may be used by the linker, and which
  644. memory regions it must avoid.  The linker does not shuffle sections to
  645. fit into the available regions, but does move the requested sections
  646. into the correct regions and issue errors when the regions become too
  647. full.
  648.    The command files may contain at most one use of the `MEMORY'
  649. command; however, you can define as many blocks of memory within it as
  650. you wish.  The syntax is:
  651.      MEMORY
  652.            {
  653.             NAME (ATTR) : ORIGIN = ORIGIN, LENGTH = LEN
  654.             ...
  655.            }
  656. `NAME'
  657.      is a name used internally by the linker to refer to the region. Any
  658.      symbol name may be used.  The region names are stored in a separate
  659.      name space, and will not conflict with symbols, file names or
  660.      section names.  Use distinct names to specify multiple regions.
  661. `(ATTR)'
  662.      is an optional list of attributes, permitted for compatibility
  663.      with the AT&T linker but not used by `ld' beyond checking that the
  664.      attribute list is valid.  Valid attribute lists must be made up of
  665.      the characters "`LIRWX'".  If you omit the attribute list, you may
  666.      omit the parentheses around it as well.
  667. `ORIGIN'
  668.      is the start address of the region in physical memory.  It is an
  669.      expression that must evaluate to a constant before memory
  670.      allocation is performed. The keyword `ORIGIN' may be abbreviated
  671.      to `org' or `o'.
  672. `LEN'
  673.      is the size in bytes of the region (an expression).  The keyword
  674.      `LENGTH' may be abbreviated to `len' or `l'.
  675.    For example, to specify that memory has two regions available for
  676. allocation--one starting at 0 for 256 kilobytes, and the other starting
  677. at `0x40000000' for four megabytes:
  678.      MEMORY
  679.              {
  680.              rom : ORIGIN = 0, LENGTH = 256K
  681.              ram : org = 0x40000000, l = 4M
  682.              }
  683.    Once you have defined a region of memory named MEM, you can direct
  684. specific output sections there by using a command ending in `>MEM'
  685. within the `SECTIONS' command (*note Section Options::.).  If the
  686. combined output sections directed to a region are too big for the
  687. region, the linker will issue an error message.
  688. File: ld.info,  Node: SECTIONS,  Next: Entry Point,  Prev: MEMORY,  Up: Commands
  689. SECTIONS Command
  690. ================
  691.    The `SECTIONS' command controls exactly where input sections are
  692. placed into output sections, their order and to which output sections
  693. they are allocated.
  694.    You may use at most one `SECTIONS' command in a commands file, but
  695. you can have as many statements within it as you wish.  Statements
  696. within the `SECTIONS' command can do one of three things:
  697.    * define the entry point;
  698.    * assign a value to a symbol;
  699.    * describe the placement of a named output section, and what input
  700.      sections make it up.
  701.    The first two possibilities--defining the entry point, and defining
  702. symbols--can also be done outside the `SECTIONS' command: *note Entry
  703. Point::., *note Assignment::..  They are permitted here as well for
  704. your convenience in reading the script, so that symbols or the entry
  705. point can be defined at meaningful points in your output-file layout.
  706.    When no `SECTIONS' command is specified, the default action of the
  707. linker is to place each input section into an identically named output
  708. section in the order that the sections are first encountered in the
  709. input files; if all input sections are present in the first file, for
  710. example, the order of sections in the output file will match the order
  711. in the first input file.
  712. * Menu:
  713. * Section Definition::          Section Definitions
  714. * Section Contents::            Section Contents
  715. * Section Options::             Optional Section Attributes
  716. File: ld.info,  Node: Section Definition,  Next: Section Contents,  Up: SECTIONS
  717. Section Definitions
  718. -------------------
  719.    The most frequently used statement in the `SECTIONS' command is the
  720. "section definition", which you can use to specify the properties of an
  721. output section: its location, alignment, contents, fill pattern, and
  722. target memory region.  Most of these specifications are optional; the
  723. simplest form of a section definition is
  724.      SECTIONS { ...
  725.      SECNAME : {
  726.                       CONTENTS
  727.                      }
  728.      ... }
  729. SECNAME is the name of the output section, and CONTENTS a specification
  730. of what goes there--for example, a list of input files or sections of
  731. input files.  As you might assume, the whitespace shown is optional.
  732. You do need the colon `:' and the braces `{}', however.
  733.    SECNAME must meet the constraints of your output format.  In formats
  734. which only support a limited number of sections, such as `a.out', the
  735. name must be one of the names supported by the format (`a.out', for
  736. example, allows only `.text', `.data' or `.bss'). If the output format
  737. supports any number of sections, but with numbers and not names (as is
  738. the case for Oasys), the name should be supplied as a quoted numeric
  739. string.  A section name may consist of any sequence characters, but any
  740. name which does not conform to the standard `ld' symbol name syntax
  741. must be quoted.  *Note Symbol Names: Symbols.
  742. File: ld.info,  Node: Section Contents,  Next: Section Options,  Prev: Section Definition,  Up: SECTIONS
  743. Section Contents
  744. ----------------
  745.    In a section definition, you can specify the contents of an output
  746. section by listing particular object files, by listing particular
  747. input-file sections, or by a combination of the two.  You can also
  748. place arbitrary data in the section, and define symbols relative to the
  749. beginning of the section.
  750.    The CONTENTS of a section definition may include any of the
  751. following kinds of statement.  You can include as many of these as you
  752. like in a single section definition, separated from one another by
  753. whitespace.
  754. `FILENAME'
  755.      You may simply name a particular input file to be placed in the
  756.      current output section; *all* sections from that file are placed
  757.      in the current section definition. To specify a list of particular
  758.      files by name:
  759.           .data : { afile.o bfile.o cfile.o }
  760.      The example also illustrates that multiple statements can be
  761.      included in the contents of a section definition, since each file
  762.      name is a separate statement.
  763.      If the file name has already been mentioned in another section
  764.      definition, with an explicit section name list, then only those
  765.      sections which have not yet been allocated are used.
  766. `FILENAME( SECTION )'
  767. `FILENAME( SECTION, SECTION, ... )'
  768. `FILENAME( SECTION SECTION ... )'
  769.      You can name one or more sections from your input files, for
  770.      insertion in the current output section.  If you wish to specify a
  771.      list of input-file sections inside the parentheses, you may
  772.      separate the section names by either commas or whitespace.
  773. `* (SECTION)'
  774. `* (SECTION, SECTION, ...)'
  775. `* (SECTION SECTION ...'
  776.      Instead of explicitly naming particular input files in a link
  777.      control script, you can refer to *all* files from the `ld' command
  778.      line: use `*' instead of a particular file name before the
  779.      parenthesized input-file section list.
  780.      For example, to copy sections `1' through `4' from an Oasys file
  781.      into the `.text' section of an `a.out' file, and sections `13' and
  782.      `14' into the `.data' section:
  783.           SECTIONS {
  784.                   .text :{
  785.                           *("1" "2" "3" "4")
  786.                   }
  787.           
  788.                   .data :{
  789.                           *("13" "14")
  790.                   }
  791.           }
  792.      If you have already explicitly included some files by name, `*'
  793.      refers to all *remaining* files--those whose places in the output
  794.      file have not yet been defined.
  795. `[ SECTION ]'
  796. `[ SECTION, SECTION, ... ]'
  797. `[ SECTION SECTION ... ]'
  798.      This is an alternate notation to specify named sections from all
  799.      unallocated input files; its effect is exactly the same as that of
  800.      `* (SECTION...)'
  801. `FILENAME`( COMMON )''
  802. `( COMMON )'
  803.      Specify where in your output file to place uninitialized data with
  804.      this notation.  `*(COMMON)' by itself refers to all uninitialized
  805.      data from all input files (so far as it is not yet allocated);
  806.      FILENAME`(COMMON)' refers to uninitialized data from a particular
  807.      file.  Both are special cases of the general mechanisms for
  808.      specifying where to place input-file sections: `ld' permits you to
  809.      refer to uninitialized data as if it were in an input-file section
  810.      named `COMMON', regardless of the input file's format.
  811.    For example, the following command script arranges the output file
  812. into three consecutive sections, named `.text', `.data', and `.bss',
  813. taking the input for each from the correspondingly named sections of
  814. all the input files:
  815.      SECTIONS {
  816.        .text : { *(.text) }
  817.        .data : { *(.data) }
  818.        .bss :  { *(.bss)  *(COMMON) }
  819.      }
  820.    The following example reads all of the sections from file `all.o'
  821. and places them at the start of output section `outputa' which starts
  822. at location `0x10000'. All of section `.input1' from file `foo.o'
  823. follows immediately, in the same output section.  All of section
  824. `.input2' from `foo.o' goes into output section `outputb', followed by
  825. section `.input1' from `foo1.o'.  All of the remaining `.input1' and
  826. `.input2' sections from any files are written to output section
  827. `outputc'.
  828.      SECTIONS {
  829.              outputa 0x10000 :
  830.                      {
  831.                      all.o
  832.                      foo.o (.input1)
  833.                      }
  834.              outputb :
  835.                      {
  836.                      foo.o (.input2)
  837.                      foo1.o (.input1)
  838.                      }
  839.              outputc :
  840.                      {
  841.                      *(.input1)
  842.                      *(.input2)
  843.                      }
  844.      }
  845.    There are still more kinds of statements permitted in the contents of
  846. output section definitions.  The foregoing statements permitted you to
  847. arrange, in your output file, data originating from your input files.
  848. You can also place data directly in an output section from the link
  849. command script.  Most of these additional statements involve
  850. expressions; *note Expressions::..  Although these statements are shown
  851. separately here for ease of presentation, no such segregation is needed
  852. within a section definition in the `SECTIONS' command; you can intermix
  853. them freely with any of the statements we've just described.
  854. `CREATE_OBJECT_SYMBOLS'
  855.      Create a symbol for each input file in the current section, set to
  856.      the address of the first byte of data written from the input file.
  857.      For instance, with `a.out' files it is conventional to have a
  858.      symbol for each input file.  You can accomplish this by defining
  859.      the output `.text' section as follows:
  860.           SECTIONS {
  861.                   .text 0x2020 :
  862.                            {
  863.                           CREATE_OBJECT_SYMBOLS
  864.                           *(.text)
  865.                           _etext = ALIGN(0x2000);
  866.                           }
  867.                   ...
  868.           }
  869.      If `objsym' is a file containing this script, and `a.o', `b.o',
  870.      `c.o', and `d.o' are four input files with contents like the
  871.      following--
  872.           /* a.c */
  873.           
  874.           afunction() { }
  875.           int adata=1;
  876.           int abss;
  877.      `ld -M sample a.o b.o c.o d.o' would create a map like this,
  878.      containing symbols matching the object file names:
  879.           00000000 A __DYNAMIC
  880.           00004020 B _abss
  881.           00004000 D _adata
  882.           00002020 T _afunction
  883.           00004024 B _bbss
  884.           00004008 D _bdata
  885.           00002038 T _bfunction
  886.           00004028 B _cbss
  887.           00004010 D _cdata
  888.           00002050 T _cfunction
  889.           0000402c B _dbss
  890.           00004018 D _ddata
  891.           00002068 T _dfunction
  892.           00004020 D _edata
  893.           00004030 B _end
  894.           00004000 T _etext
  895.           00002020 t a.o
  896.           00002038 t b.o
  897.           00002050 t c.o
  898.           00002068 t d.o
  899. `SYMBOL = EXPRESSION ;'
  900. `SYMBOL F= EXPRESSION ;'
  901.      SYMBOL is any symbol name (*note Symbols::.).  "F=" refers to any
  902.      of the operators `&= += -= *= /=' which combine arithmetic and
  903.      assignment.
  904.      When you assign a value to a symbol within a particular section
  905.      definition, the value is relative to the beginning of the section
  906.      (*note Assignment::.).  If you write
  907.           SECTIONS {
  908.             abs = 14 ;
  909.             ...
  910.             .data : { ... rel = 14 ; ... }
  911.             abs2 = 14 + ADDR(.data);
  912.             ...
  913.           }
  914.      `abs' and `rel' do not have the same value; `rel' has the same
  915.      value as `abs2'.
  916. `BYTE(EXPRESSION)'
  917. `SHORT(EXPRESSION)'
  918. `LONG(EXPRESSION)'
  919.      By including one of these three statements in a section
  920.      definition, you can explicitly place one, two, or four bytes
  921.      (respectively) at the current address of that section.
  922.      Multiple-byte quantities are represented in whatever byte order is
  923.      appropriate for the output file format (*note BFD::.).
  924. `FILL(EXPRESSION)'
  925.      Specifies the "fill pattern" for the current section.  Any
  926.      otherwise unspecified regions of memory within the section (for
  927.      example, regions you skip over by assigning a new value to the
  928.      location counter `.') are filled with the two least significant
  929.      bytes from the EXPRESSION argument.  A `FILL' statement covers
  930.      memory locations *after* the point it occurs in the section
  931.      definition; by including more than one `FILL' statement, you can
  932.      have different fill patterns in different parts of an output
  933.      section.
  934. File: ld.info,  Node: Section Options,  Prev: Section Contents,  Up: SECTIONS
  935. Optional Section Attributes
  936. ---------------------------
  937.    Here is the full syntax of a section definition, including all the
  938. optional portions:
  939.      SECTIONS {
  940.      ...
  941.      SECNAME START BLOCK(ALIGN) (NOLOAD) : { CONTENTS } =FILL >REGION
  942.      ...
  943.      }
  944.    SECNAME and CONTENTS are required.  *Note Section Definition::, and
  945. *note Section Contents::. for details on CONTENTS.  The remaining
  946. elements--START, `BLOCK(ALIGN)', `(NOLOAD)' `=FILL', and `>REGION'--are
  947. all optional.
  948. `START'
  949.      You can force the output section to be loaded at a specified
  950.      address by specifying START immediately following the section name.
  951.      sTART can be represented as any expression. The following example
  952.      generates section OUTPUT at location `0x40000000':
  953.           SECTIONS {
  954.                   ...
  955.                   output 0x40000000: {
  956.                          ...
  957.                     }
  958.                   ...
  959.           }
  960. `BLOCK(ALIGN)'
  961.      You can include `BLOCK()' specification to advance the location
  962.      counter `.' prior to the beginning of the section, so that the
  963.      section will begin at the specified alignment.  ALIGN is an
  964.      expression.
  965. `(NOLOAD)'
  966.      Use `(NOLOAD)' to prevent a section from being loaded into memory
  967.      each time it is accessed.  For example, in the script sample
  968.      below, the `ROM' segment is addressed at memory location `0' and
  969.      does not need to be loaded into each object file:
  970.           SECTIONS {
  971.                   ROM  0  (NOLOAD)  : { ... }
  972.                   ...
  973.           }
  974. `=FILL'
  975.      Including `=FILL' in a section definition specifies the initial
  976.      fill value for that section.  You may use any expression to
  977.      specify FILL.  Any unallocated holes in the current output section
  978.      when written to the output file will be filled with the two least
  979.      significant bytes of the value, repeated as necessary.  You can
  980.      also change the fill value with a `FILL' statement in the CONTENTS
  981.      of a section definition.
  982. `>REGION'
  983.      Assign this section to a previously defined region of memory.
  984.      *Note MEMORY::.
  985. File: ld.info,  Node: Entry Point,  Next: Other Commands,  Prev: SECTIONS,  Up: Commands
  986. The Entry Point
  987. ===============
  988.    The linker command language includes a command specifically for
  989. defining the first executable instruction in an output file (its "entry
  990. point").  Its argument is a symbol name:
  991.      ENTRY(SYMBOL)
  992.    Like symbol assignments, the `ENTRY' command may be placed either as
  993. an independent command in the command file, or among the section
  994. definitions within the `SECTIONS' command--whatever makes the most
  995. sense for your layout.
  996.    `ENTRY' is only one of several ways of choosing the entry point.
  997. You may indicate it in any of the following ways (shown in descending
  998. order of priority: methods higher in the list override methods lower
  999. down).
  1000.    * the `-e' ENTRY command-line option;
  1001.    * the `ENTRY(SYMBOL' command in a linker control script;
  1002.    * the value of the symbol `start', if present;
  1003.    * the value of the symbol `_main', if present;
  1004.    * the address of the first byte of the `.text' section, if present;
  1005.    * The address `0'.
  1006.    For example, you can use these rules to generate an entry point with
  1007. an assignment statement: if no symbol `start' is defined within your
  1008. input files, you can simply define it, assigning it an appropriate
  1009. value--
  1010.      start = 0x2020;
  1011. The example shows an absolute address, but you can use any expression.
  1012. For example, if your input object files use some other symbol-name
  1013. convention for the entry point, you can just assign the value of
  1014. whatever symbol contains the start address to `start':
  1015.      start = other_symbol ;
  1016. File: ld.info,  Node: Other Commands,  Prev: Entry Point,  Up: Commands
  1017. Other Commands
  1018. ==============
  1019.    The command language includes a number of other commands that you can
  1020. use for specialized purposes.  They are similar in purpose to
  1021. command-line options.
  1022. `FLOAT'
  1023. `NOFLOAT'
  1024.      These keywords were used in some older linkers to request a
  1025.      particular math subroutine library.  `ld' doesn't use the
  1026.      keywords, assuming instead that any necessary subroutines are in
  1027.      libraries specified using the general mechanisms for linking to
  1028.      archives; but to permit the use of scripts that were written for
  1029.      the older linkers, the keywords `FLOAT' and `NOFLOAT' are accepted
  1030.      and ignored.
  1031. `FORCE_COMMON_ALLOCATION'
  1032.      This command has the same effect as the `-d' command-line option:
  1033.      to make `ld' assign space to common symbols even if a relocatable
  1034.      output file is specified (`-r').
  1035. `INPUT ( FILE, FILE, ... )'
  1036. `INPUT ( FILE FILE ... )'
  1037.      Use this command to include binary input files in the link, without
  1038.      including them in a particular section definition.  Files
  1039.      specified this way are treated identically to object files listed
  1040.      on the command line.
  1041. `OUTPUT ( FILENAME )'
  1042.      Use this command to name the link output file FILENAME.  The
  1043.      effect of `OUTPUT(FILENAME)' is identical to the effect of
  1044.      `-o FILENAME', and whichever is encountered last will control the
  1045.      name actually used to name the output file.  In particular, you
  1046.      can use this command to supply a default output-file name other
  1047.      than `a.out'.
  1048. `OUTPUT_ARCH ( BFDNAME )'
  1049.      Specify a particular output machine architecture, with one of the
  1050.      names used by the BFD back-end routines (*note BFD::.).  This
  1051.      command is often unnecessary; the architecture is most often set
  1052.      implicitly by either the system BFD configuration or as a side
  1053.      effect of the `OUTPUT_FORMAT' command.
  1054. `OUTPUT_FORMAT ( BFDNAME )'
  1055.      Specify a particular output format, with one of the names used by
  1056.      the BFD back-end routines (*note BFD::.).  This selection will
  1057.      only affect the output file; the related command `TARGET' affects
  1058.      primarily input files.
  1059. `SEARCH_DIR ( PATH )'
  1060.      Add PATH to the list of paths where `ld' looks for archive
  1061.      libraries.  `SEARCH_DIR(PATH)' has the same effect as `-LPATH' on
  1062.      the command line.
  1063. `STARTUP ( FILENAME )'
  1064.      Ensure that FILENAME is the first input file used in the link
  1065.      process.
  1066. `TARGET ( FORMAT )'
  1067.      Change the input-file object code format (like the command-line
  1068.      option `-b' or its synonym `-format').  The argument FORMAT is one
  1069.      of the strings used by BFD to name binary formats.  In the current
  1070.      `ld' implementation, if `TARGET' is specified but `OUTPUT_FORMAT'
  1071.      is not, the last `TARGET' argument is also used as the default
  1072.      format for the `ld' output file.  *Note BFD::.
  1073.      If you don't use the `TARGET' command, `ld' uses the value of the
  1074.      environment variable `GNUTARGET', if available, to select the
  1075.      output file format.  If that variable is also absent, `ld' uses
  1076.      the default format configured for your machine in the BFD
  1077.      libraries.
  1078. This is Info file ld.info, produced by Makeinfo-1.52 from the input
  1079. file ./ld.texinfo.
  1080. START-INFO-DIR-ENTRY
  1081. * Ld: (ld).            The GNU linker.
  1082. END-INFO-DIR-ENTRY
  1083.    This file documents the GNU linker LD.
  1084.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  1085.    Permission is granted to make and distribute verbatim copies of this
  1086. manual provided the copyright notice and this permission notice are
  1087. preserved on all copies.
  1088.    Permission is granted to copy and distribute modified versions of
  1089. this manual under the conditions for verbatim copying, provided also
  1090. that the entire resulting derived work is distributed under the terms
  1091. of a permission notice identical to this one.
  1092.    Permission is granted to copy and distribute translations of this
  1093. manual into another language, under the above conditions for modified
  1094. versions.
  1095. File: ld.info,  Node: BFD,  Next: MRI,  Prev: Commands,  Up: Top
  1096.    The linker accesses object and archive files using the BFD libraries.
  1097. These libraries allow the linker to use the same routines to operate on
  1098. object files whatever the object file format.  A different object file
  1099. format can be supported simply by creating a new BFD back end and adding
  1100. it to the library.  You can use `objdump -i' (*note objdump:
  1101. (binutils.info)objdump.) to list all the formats available for each
  1102. architecture under BFD.  This was the list of formats, and of
  1103. architectures supported for each format, as of the time this manual was
  1104. prepared:
  1105.      BFD header file version 0.18
  1106.      a.out-i386
  1107.       (header big endian, data big endian)
  1108.        m68k:68020
  1109.        a29k
  1110.        sparc
  1111.        i386
  1112.      a.out-sunos-big
  1113.       (header big endian, data big endian)
  1114.        m68k:68020
  1115.        a29k
  1116.        sparc
  1117.        i386
  1118.      b.out.big
  1119.       (header big endian, data little endian)
  1120.        i960:core
  1121.      b.out.little
  1122.       (header little endian, data little endian)
  1123.        i960:core
  1124.      coff-a29k-big
  1125.       (header big endian, data big endian)
  1126.        a29k
  1127.      coff-h8300
  1128.       (header big endian, data big endian)
  1129.        H8/300
  1130.      coff-i386
  1131.       (header little endian, data little endian)
  1132.        i386
  1133.      coff-Intel-big
  1134.       (header big endian, data little endian)
  1135.        i960:core
  1136.      coff-Intel-little
  1137.       (header little endian, data little endian)
  1138.        i960:core
  1139.      coff-m68k
  1140.       (header big endian, data big endian)
  1141.        m68k:68020
  1142.      coff-m88kbcs
  1143.       (header big endian, data big endian)
  1144.        m88k:88100
  1145.      ecoff-bigmips
  1146.       (header big endian, data big endian)
  1147.        mips
  1148.      ecoff-littlemips
  1149.       (header little endian, data little endian)
  1150.        mips
  1151.      elf-big
  1152.       (header big endian, data big endian)
  1153.        m68k:68020
  1154.        vax
  1155.        i960:core
  1156.        a29k
  1157.        sparc
  1158.        mips
  1159.        i386
  1160.        m88k:88100
  1161.        H8/300
  1162.        rs6000:6000
  1163.      elf-little
  1164.       (header little endian, data little endian)
  1165.        m68k:68020
  1166.        vax
  1167.        i960:core
  1168.        a29k
  1169.        sparc
  1170.        mips
  1171.        i386
  1172.        m88k:88100
  1173.        H8/300
  1174.        rs6000:6000
  1175.      ieee
  1176.       (header big endian, data big endian)
  1177.        m68k:68020
  1178.        vax
  1179.        i960:core
  1180.        a29k
  1181.        sparc
  1182.        mips
  1183.        i386
  1184.        m88k:88100
  1185.        H8/300
  1186.        rs6000:6000
  1187.      srec
  1188.       (header big endian, data big endian)
  1189.        m68k:68020
  1190.        vax
  1191.        i960:core
  1192.        a29k
  1193.        sparc
  1194.        mips
  1195.        i386
  1196.        m88k:88100
  1197.        H8/300
  1198.        rs6000:6000
  1199.    As with most implementations, BFD is a compromise between several
  1200. conflicting requirements. The major factor influencing BFD design was
  1201. efficiency: any time used converting between formats is time which
  1202. would not have been spent had BFD not been involved. This is partly
  1203. offset by abstraction payback; since BFD simplifies applications and
  1204. back ends, more time and care may be spent optimizing algorithms for a
  1205. greater speed.
  1206.    One minor artifact of the BFD solution which you should bear in mind
  1207. is the potential for information loss.  There are two places where
  1208. useful information can be lost using the BFD mechanism: during
  1209. conversion and during output. *Note BFD information loss::.
  1210. * Menu:
  1211. * BFD outline::                 How it works: an outline of BFD
  1212. * BFD information loss::        Information Loss
  1213. * Mechanism::                   Mechanism
  1214. File: ld.info,  Node: BFD outline,  Next: BFD information loss,  Up: BFD
  1215. How it works: an outline of BFD
  1216. ===============================
  1217.    When an object file is opened, BFD subroutines automatically
  1218. determine the format of the input object file, and build a descriptor in
  1219. memory with pointers to routines that will be used to access elements of
  1220. the object file's data structures.
  1221.    As different information from the the object files is required, BFD
  1222. reads from different sections of the file and processes them.  For
  1223. example, a very common operation for the linker is processing symbol
  1224. tables.  Each BFD back end provides a routine for converting between
  1225. the object file's representation of symbols and an internal canonical
  1226. format. When the linker asks for the symbol table of an object file, it
  1227. calls through the memory pointer to the BFD back end routine which
  1228. reads and converts the table into a canonical form.  The linker then
  1229. operates upon the common form. When the link is finished and the linker
  1230. writes the symbol table of the output file, another BFD back end
  1231. routine is called which takes the newly created symbol table and
  1232. converts it into the chosen output format.
  1233. File: ld.info,  Node: BFD information loss,  Next: Mechanism,  Prev: BFD outline,  Up: BFD
  1234. Information Loss
  1235. ================
  1236.    *Information can be lost during output.* The output formats
  1237. supported by BFD do not provide identical facilities, and information
  1238. which may be described in one form has nowhere to go in another format.
  1239. One example of this is alignment information in `b.out'. There is
  1240. nowhere in an `a.out' format file to store alignment information on the
  1241. contained data, so when a file is linked from `b.out' and an `a.out'
  1242. image is produced, alignment information will not propagate to the
  1243. output file. (The linker will still use the alignment information
  1244. internally, so the link is performed correctly).
  1245.    Another example is COFF section names. COFF files may contain an
  1246. unlimited number of sections, each one with a textual section name. If
  1247. the target of the link is a format which does not have many sections
  1248. (e.g., `a.out') or has sections without names (e.g., the Oasys format)
  1249. the link cannot be done simply. You can circumvent this problem by
  1250. describing the desired input-to-output section mapping with the command
  1251. language.
  1252.    *Information can be lost during canonicalization.* The BFD internal
  1253. canonical form of the external formats is not exhaustive; there are
  1254. structures in input formats for which there is no direct representation
  1255. internally.  This means that the BFD back ends cannot maintain all
  1256. possible data richness through the transformation between external to
  1257. internal and back to external formats.
  1258.    This limitation is only a problem when using the linker to read one
  1259. format and write another. Each BFD back end is responsible for
  1260. maintaining as much data as possible, and the internal BFD canonical
  1261. form has structures which are opaque to the BFD core, and exported only
  1262. to the back ends. When a file is read in one format, the canonical form
  1263. is generated for BFD and the linker. At the same time, the back end
  1264. saves away any information which would otherwise be lost. If the data
  1265. is then written back in the same format, the back end routine will be
  1266. able to use the canonical form provided by the BFD core as well as the
  1267. information it prepared earlier.  Since there is a great deal of
  1268. commonality between back ends, there is no information lost when
  1269. linking big endian COFF to little endian COFF, or from `a.out' to
  1270. `b.out'.  When a mixture of formats is linked, the information is only
  1271. lost from the files whose format differs from the destination.
  1272. File: ld.info,  Node: Mechanism,  Prev: BFD information loss,  Up: BFD
  1273. Mechanism
  1274. =========
  1275.    The greatest potential for loss of information occurs when there is
  1276. the least overlap between the information provided by the source
  1277. format, that stored by the canonical format, and that needed by the
  1278. destination format. A brief description of the canonical form may help
  1279. you understand which kinds of data you can count on preserving across
  1280. conversions.
  1281. *files*
  1282.      Information on target machine architecture, particular
  1283.      implementation, and format type are stored on a per-file basis.
  1284.      Other information includes a demand pagable bit and a write
  1285.      protected bit.  Information like Unix magic numbers is not stored
  1286.      here--only the magic numbers' meaning, so a `ZMAGIC' file would
  1287.      have both the demand pagable bit and the write protected text bit
  1288.      set.
  1289.      The byte order of the target is stored on a per-file basis, so
  1290.      that big- and little-endian object files may be linked with one
  1291.      another.
  1292. *sections*
  1293.      Each section in the input file contains the name of the section,
  1294.      the original address in the object file, various options, size and
  1295.      alignment information and pointers into other BFD data structures.
  1296. *symbols*
  1297.      Each symbol contains a pointer to the object file which originally
  1298.      defined it, its name, its value, and various option bits.  When a
  1299.      BFD back end reads in a symbol table, the back end relocates all
  1300.      symbols to make them relative to the base of the section where
  1301.      they were defined.  Doing this ensures that each symbol points to
  1302.      its containing section.  Each symbol also has a varying amount of
  1303.      hidden private data for the BFD back end.  Since the symbol points
  1304.      to the original file, the private data format for that symbol is
  1305.      accessible.  `ld' can operate on a collection of symbols of wildly
  1306.      different formats without problems.
  1307.      Normal global and simple local symbols are maintained on output,
  1308.      so an output file (no matter its format) will retain symbols
  1309.      pointing to functions and to global, static, and common variables.
  1310.      Some symbol information is not worth retaining; in `a.out', type
  1311.      information is stored in the symbol table as long symbol names.
  1312.      This information would be useless to most COFF debuggers and may
  1313.      be thrown away with appropriate command line switches. (The GNU
  1314.      debugger `gdb' does support `a.out' style debugging information in
  1315.      COFF).
  1316.      There is one word of type information within the symbol, so if the
  1317.      format supports symbol type information within symbols (for
  1318.      example, COFF, IEEE, Oasys) and the type is simple enough to fit
  1319.      within one word (nearly everything but aggregates), the
  1320.      information will be preserved.
  1321. *relocation level*
  1322.      Each canonical BFD relocation record contains a pointer to the
  1323.      symbol to relocate to, the offset of the data to relocate, the
  1324.      section the data is in, and a pointer to a relocation type
  1325.      descriptor. Relocation is performed by passing messages through
  1326.      the relocation type descriptor and the symbol pointer. Therefore,
  1327.      relocations can be performed on output data using a relocation
  1328.      method that is only available in one of the input formats. For
  1329.      instance, Oasys provides a byte relocation format.  A relocation
  1330.      record requesting this relocation type would point indirectly to a
  1331.      routine to perform this, so the relocation may be performed on a
  1332.      byte being written to a COFF file, even though 68k COFF has no
  1333.      such relocation type.
  1334. *line numbers*
  1335.      Object formats can contain, for debugging purposes, some form of
  1336.      mapping between symbols, source line numbers, and addresses in the
  1337.      output file.  These addresses have to be relocated along with the
  1338.      symbol information.  Each symbol with an associated list of line
  1339.      number records points to the first record of the list.  The head
  1340.      of a line number list consists of a pointer to the symbol, which
  1341.      allows finding out the address of the function whose line number
  1342.      is being described. The rest of the list is made up of pairs:
  1343.      offsets into the section and line numbers. Any format which can
  1344.      simply derive this information can pass it successfully between
  1345.      formats (COFF, IEEE and Oasys).
  1346. File: ld.info,  Node: MRI,  Next: Index,  Prev: BFD,  Up: Top
  1347. MRI Compatible Script Files
  1348. ***************************
  1349.    To aid users making the transition to GNU `ld' from the MRI linker,
  1350. `ld' can use MRI compatible linker scripts as an alternative to the
  1351. more general-purpose linker scripting language described in *Note
  1352. Command Language: Commands.  MRI compatible linker scripts have a much
  1353. simpler command set than the scripting language otherwise used with
  1354. `ld'.  GNU `ld' supports the most commonly used MRI linker commands;
  1355. these commands are described here.
  1356.    You can specify a file containing an MRI-compatible script using the
  1357. `-c' command-line option.
  1358.    Each command in an MRI-compatible script occupies its own line; each
  1359. command line starts with the keyword that identifies the command (though
  1360. blank lines are also allowed for punctuation).  If a line of an
  1361. MRI-compatible script begins with an unrecognized keyword, `ld' issues
  1362. a warning message, but continues processing the script.
  1363.    Lines beginning with `*' are comments.
  1364.    You can write these commands using all upper-case letters, or all
  1365. lower case; for example, `chip' is the same as `CHIP'.  The following
  1366. list shows only the upper-case form of each command.
  1367. `ABSOLUTE SECNAME'
  1368. `ABSOLUTE SECNAME, SECNAME, ... SECNAME'
  1369.      Normally, `ld' includes in the output file all sections from all
  1370.      the input files.  However, in an MRI-compatible script, you can
  1371.      use the `ABSOLUTE' command to restrict the sections that will be
  1372.      present in your output program.  If the `ABSOLUTE' command is used
  1373.      at all in a script, then only the sections named explicitly in
  1374.      `ABSOLUTE' commands will appear in the linker output.  You can
  1375.      still use other input sections (whatever you select on the command
  1376.      line, or using `LOAD') to resolve addresses in the output file.
  1377. `ALIAS OUT-SECNAME, IN-SECNAME'
  1378.      Use this command to place the data from input section IN-SECNAME
  1379.      in a section called OUT-SECNAME in the linker output file.
  1380.      IN-SECNAME may be an integer.
  1381. `BASE EXPRESSION'
  1382.      Use the value of EXPRESSION as the lowest address (other than
  1383.      absolute addresses) in the output file.
  1384. `CHIP EXPRESSION'
  1385. `CHIP EXPRESSION, EXPRESSION'
  1386.      This command does nothing; it is accepted only for compatibility.
  1387. `END'
  1388.      This command does nothing whatever; it's only accepted for
  1389.      compatibility.
  1390. `FORMAT OUTPUT-FORMAT'
  1391.      Similar to the `OUTPUT_FORMAT' command in the more general linker
  1392.      language, but restricted to one of these output formats:
  1393.        1. S-records, if OUTPUT-FORMAT is `S'
  1394.        2. IEEE, if OUTPUT-FORMAT is `IEEE'
  1395.        3. COFF (the `coff-m68k' variant in BFD), if OUTPUT-FORMAT is
  1396.           `COFF'
  1397. `LIST ANYTHING...'
  1398.      Print (to the standard output file) a link map, as produced by the
  1399.      `ld' command-line option `-M'.
  1400.      The keyword `LIST' may be followed by anything on the same line,
  1401.      with no change in its effect.
  1402. `LOAD FILENAME'
  1403. `LOAD FILENAME, FILENAME, ... FILENAME'
  1404.      Include one or more object file FILENAME in the link; this has the
  1405.      same effect as specifying FILENAME directly on the `ld' command
  1406.      line.
  1407. `NAME OUTPUT-NAME'
  1408.      OUTPUT-NAME is the name for the program produced by `ld'; the
  1409.      MRI-compatible command `NAME' is equivalent to the command-line
  1410.      option `-o' or the general script language command `OUTPUT'.
  1411. `ORDER SECNAME, SECNAME, ... SECNAME'
  1412. `ORDER SECNAME SECNAME SECNAME'
  1413.      Normally, `ld' orders the sections in its output file in the order
  1414.      in which they first appear in the input files.  In an
  1415.      MRI-compatible script, you can override this ordering with the
  1416.      `ORDER' command.  The sections you list with `ORDER' will appear
  1417.      first in your output file, in the order specified.
  1418. `PUBLIC NAME=EXPRESSION'
  1419. `PUBLIC NAME,EXPRESSION'
  1420. `PUBLIC NAME EXPRESSION'
  1421.      Supply a value (EXPRESSION) for external symbol NAME used in the
  1422.      linker input files.
  1423. `SECT SECNAME, EXPRESSION'
  1424. `SECT SECNAME=EXPRESSION'
  1425. `SECT SECNAME EXPRESSION'
  1426.      You can use any of these three forms of the `SECT' command to
  1427.      specify the start address (EXPRESSION) for section SECNAME.  If
  1428.      you have more than one `SECT' statement for the same SECNAME, only
  1429.      the *first* sets the start address.
  1430. File: ld.info,  Node: Index,  Prev: MRI,  Up: Top
  1431. Index
  1432. *****
  1433. * Menu:
  1434. * ":                                    Symbols.
  1435. * ( COMMON ):                           Section Contents.
  1436. * *(SECTION):                           Section Contents.
  1437. * -b FORMAT:                            Invocation.
  1438. * -Bstatic:                             Invocation.
  1439. * -c MRI-CMDFILE:                       Invocation.
  1440. * -d:                                   Invocation.
  1441. * -dc:                                  Invocation.
  1442. * -defsym SYMBOL=EXP:                   Invocation.
  1443. * -dp:                                  Invocation.
  1444. * -e ENTRY:                             Invocation.
  1445. * -F:                                   Invocation.
  1446. * -format:                              Invocation.
  1447. * -g:                                   Invocation.
  1448. * -i:                                   Invocation.
  1449. * -lAR:                                 Invocation.
  1450. * -LDIR:                                Invocation.
  1451. * -m:                                   Invocation.
  1452. * -M:                                   Invocation.
  1453. * -n:                                   Invocation.
  1454. * -N:                                   Invocation.
  1455. * -noinhibit-exec:                      Invocation.
  1456. * -o OUTPUT:                            Invocation.
  1457. * -r:                                   Invocation.
  1458. * -R FILE:                              Invocation.
  1459. * -relax:                               Invocation.
  1460. * -S:                                   Invocation.
  1461. * -s:                                   Invocation.
  1462. * -t:                                   Invocation.
  1463. * -T SCRIPT:                            Invocation.
  1464. * -Tbss BSSORG:                         Invocation.
  1465. * -Tdata DATAORG:                       Invocation.
  1466. * -Ttext TEXTORG:                       Invocation.
  1467. * -u SYM:                               Invocation.
  1468. * -Ur:                                  Invocation.
  1469. * -v:                                   Invocation.
  1470. * -X:                                   Invocation.
  1471. * -x:                                   Invocation.
  1472. * -ySYMBOL:                             Invocation.
  1473. * .:                                    Location Counter.
  1474. * 0x:                                   Integers.
  1475. * ;:                                    Assignment.
  1476. * =FILL:                                Section Options.
  1477. * >REGION:                              Section Options.
  1478. * ABSOLUTE (MRI):                       MRI.
  1479. * ALIAS (MRI):                          MRI.
  1480. * BASE (MRI):                           MRI.
  1481. * CHIP (MRI):                           MRI.
  1482. * END (MRI):                            MRI.
  1483. * FORMAT (MRI):                         MRI.
  1484. * LIST (MRI):                           MRI.
  1485. * LOAD (MRI):                           MRI.
  1486. * NAME (MRI):                           MRI.
  1487. * ORDER (MRI):                          MRI.
  1488. * PUBLIC (MRI):                         MRI.
  1489. * SECT (MRI):                           MRI.
  1490. * FILENAME:                             Section Contents.
  1491. * FILENAME(SECTION):                    Section Contents.
  1492. * SYMBOL = EXPRESSION ;:                Section Contents.
  1493. * SYMBOL F= EXPRESSION ;:               Section Contents.
  1494. * { SCRIPT }:                           Invocation.
  1495. * absolute and relocatable symbols:     Assignment.
  1496. * ABSOLUTE(EXP):                        Built-ins.
  1497. * ADDR(SECTION):                        Built-ins.
  1498. * ALIGN(EXP):                           Built-ins.
  1499. * aligning sections:                    Section Options.
  1500. * allocating memory:                    MEMORY.
  1501. * architectures available:              BFD.
  1502. * archive files, from cmd line:         Invocation.
  1503. * arithmetic:                           Expressions.
  1504. * arithmetic operators:                 Operators.
  1505. * assignment in scripts:                Assignment.
  1506. * assignment, in section defn:          Section Contents.
  1507. * back end:                             BFD.
  1508. * BFD canonical format:                 Mechanism.
  1509. * BFD requirements:                     BFD.
  1510. * binary input files:                   Other Commands.
  1511. * binary input format:                  Invocation.
  1512. * BLOCK(ALIGN):                         Section Options.
  1513. * BYTE(EXPRESSION):                     Section Contents.
  1514. * command files:                        Commands.
  1515. * command line:                         Invocation.
  1516. * commands, fundamental:                Scripts.
  1517. * comments:                             Scripts.
  1518. * common allocation:                    Invocation.
  1519. * common allocation:                    Other Commands.
  1520. * commons in output:                    Section Contents.
  1521. * compatibility, MRI:                   Invocation.
  1522. * constructors:                         Invocation.
  1523. * contents of a section:                Section Contents.
  1524. * CREATE_OBJECT_SYMBOLS:                Section Contents.
  1525. * current output location:              Location Counter.
  1526. * decimal integers:                     Integers.
  1527. * DEFINED(SYMBOL):                      Built-ins.
  1528. * deleting local symbols:               Invocation.
  1529. * direct output:                        Section Contents.
  1530. * discontinuous memory:                 MEMORY.
  1531. * dot:                                  Location Counter.
  1532. * entry point, defaults:                Entry Point.
  1533. * entry point, from command line:       Invocation.
  1534. * ENTRY(SYMBOL):                        Entry Point.
  1535. * expression evaluation order:          Evaluation.
  1536. * expression syntax:                    Expressions.
  1537. * expression, absolute:                 Built-ins.
  1538. * filename symbols:                     Section Contents.
  1539. * files and sections, section defn:     Section Contents.
  1540. * files, including in output sections:  Section Contents.
  1541. * fill pattern, entire section:         Section Options.
  1542. * FILL(EXPRESSION):                     Section Contents.
  1543. * first input file:                     Other Commands.
  1544. * first instruction:                    Entry Point.
  1545. * FLOAT:                                Other Commands.
  1546. * FORCE_COMMON_ALLOCATION:              Other Commands.
  1547. * format, output file:                  Other Commands.
  1548. * formats available:                    BFD.
  1549. * functions in expression language:     Built-ins.
  1550. * fundamental script commands:          Scripts.
  1551. * GNU linker:                           Overview.
  1552. * GNUTARGET:                            Other Commands.
  1553. * header size:                          Built-ins.
  1554. * hexadecimal integers:                 Integers.
  1555. * holes:                                Location Counter.
  1556. * holes, filling:                       Section Contents.
  1557. * incremental link:                     Invocation.
  1558. * INPUT ( FILES ):                      Other Commands.
  1559. * input file format:                    Other Commands.
  1560. * input filename symbols:               Section Contents.
  1561. * input files, displaying:              Invocation.
  1562. * input files, section defn:            Section Contents.
  1563. * input format:                         Invocation.
  1564. * input format:                         Invocation.
  1565. * input sections to output section:     Section Contents.
  1566. * integer notation:                     Integers.
  1567. * integer suffixes:                     Integers.
  1568. * internal object-file format:          Mechanism.
  1569. * K and M integer suffixes:             Integers.
  1570. * l =:                                  MEMORY.
  1571. * L, deleting symbols beginning:        Invocation.
  1572. * layout of output file:                Scripts.
  1573. * lazy evaluation:                      Evaluation.
  1574. * len =:                                MEMORY.
  1575. * LENGTH =:                             MEMORY.
  1576. * link map:                             Invocation.
  1577. * local symbols, deleting:              Invocation.
  1578. * location counter:                     Location Counter.
  1579. * LONG(EXPRESSION):                     Section Contents.
  1580. * M and K integer suffixes:             Integers.
  1581. * machine architecture, output:         Other Commands.
  1582. * MEMORY:                               MEMORY.
  1583. * memory region attributes:             MEMORY.
  1584. * memory regions and sections:          Section Options.
  1585. * MRI compatibility:                    MRI.
  1586. * names:                                Symbols.
  1587. * naming memory regions:                MEMORY.
  1588. * naming output sections:               Section Definition.
  1589. * naming the output file:               Invocation.
  1590. * naming the output file:               Other Commands.
  1591. * negative integers:                    Integers.
  1592. * NEXT(EXP):                            Built-ins.
  1593. * NMAGIC:                               Invocation.
  1594. * NOFLOAT:                              Other Commands.
  1595. * NOLOAD:                               Section Options.
  1596. * Non constant expression:              Assignment.
  1597. * o =:                                  MEMORY.
  1598. * object file management:               BFD.
  1599. * object files:                         Invocation.
  1600. * octal integers:                       Integers.
  1601. * OMAGIC:                               Invocation.
  1602. * opening object files:                 BFD outline.
  1603. * Operators for arithmetic:             Operators.
  1604. * options:                              Invocation.
  1605. * org =:                                MEMORY.
  1606. * ORIGIN =:                             MEMORY.
  1607. * OUTPUT ( FILENAME ):                  Other Commands.
  1608. * output file after errors:             Invocation.
  1609. * output file layout:                   Scripts.
  1610. * OUTPUT_ARCH ( BFDNAME ):              Other Commands.
  1611. * OUTPUT_FORMAT ( BFDNAME ):            Other Commands.
  1612. * partial link:                         Invocation.
  1613. * path for libraries:                   Other Commands.
  1614. * precedence in expressions:            Operators.
  1615. * prevent unnecessary loading:          Section Options.
  1616. * quoted symbol names:                  Symbols.
  1617. * read-only text:                       Invocation.
  1618. * read/write from cmd line:             Invocation.
  1619. * regions of memory:                    MEMORY.
  1620. * relaxing addressing modes:            Invocation.
  1621. * relocatable and absolute symbols:     Assignment.
  1622. * relocatable output:                   Invocation.
  1623. * requirements for BFD:                 BFD.
  1624. * rounding up location counter:         Built-ins.
  1625. * scaled integers:                      Integers.
  1626. * script files:                         Invocation.
  1627. * scripts on command line:              Invocation.
  1628. * search directory, from cmd line:      Invocation.
  1629. * search path, libraries:               Other Commands.
  1630. * SEARCH_DIR ( PATH ):                  Other Commands.
  1631. * section address:                      Built-ins.
  1632. * section address:                      Section Options.
  1633. * section alignment:                    Section Options.
  1634. * section definition:                   Section Definition.
  1635. * section defn, full syntax:            Section Options.
  1636. * section fill pattern:                 Section Options.
  1637. * section size:                         Built-ins.
  1638. * section start:                        Section Options.
  1639. * section, assigning to memory region:  Section Options.
  1640. * SECTIONS:                             SECTIONS.
  1641. * segment origins, cmd line:            Invocation.
  1642. * semicolon:                            Assignment.
  1643. * SHORT(EXPRESSION):                    Section Contents.
  1644. * SIZEOF(SECTION):                      Built-ins.
  1645. * sizeof_headers:                       Built-ins.
  1646. * SIZEOF_HEADERS:                       Built-ins.
  1647. * standard Unix system:                 Invocation.
  1648. * start address, section:               Section Options.
  1649. * start of execution:                   Entry Point.
  1650. * STARTUP ( FILENAME ):                 Other Commands.
  1651. * strip all symbols:                    Invocation.
  1652. * strip debugger symbols:               Invocation.
  1653. * suffixes for integers:                Integers.
  1654. * symbol defaults:                      Built-ins.
  1655. * symbol definition, scripts:           Assignment.
  1656. * symbol names:                         Symbols.
  1657. * symbol tracing:                       Invocation.
  1658. * symbol-only input:                    Invocation.
  1659. * symbols, from command line:           Invocation.
  1660. * symbols, relocatable and absolute:    Assignment.
  1661. * synthesizing linker:                  Invocation.
  1662. * TARGET ( FORMAT ):                    Other Commands.
  1663. * unallocated address, next:            Built-ins.
  1664. * undefined symbol:                     Invocation.
  1665. * uninitialized data:                   Section Contents.
  1666. * unspecified memory:                   Section Contents.
  1667. * variables, defining:                  Assignment.
  1668. * verbose:                              Invocation.
  1669. * version:                              Invocation.
  1670. * what is this?:                        Overview.
  1671. * [ SECTIONS ]:                         Section Contents.
  1672.